Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@mswjs/cookies
Advanced tools
Manage request/response cookies in the environments where those are not supported.
Manage request/response cookies in the environments where those are not supported.
npm install @mswjs/cookies
set(request: Request, response: Response)
Sets the response cookies in the store associated with the given request origin.
store.set(
new Request('https://mswjs.io'),
new Response(null, {
headers: new Headers({
'set-cookie': 'id=abc-123',
}),
}),
)
get(request: Request)
Retrieves the cookies relevant to the given request's origin.
store.get(new Request('https://mswjs.io'))
.get()
respects thereq.credentials
policy.
Executing this command returns a Map
instance with the request cookies:
Map {
"id" => { name: "id", value: "abc-123" }
}
getAll()
Returns all the cookies in the store.
Executing .getAll()
method returns a Map
instance with request cookies grouped by request origin.
Map {
"https://mswjs.io" => Map {
"id" => { name: "id", value: "abc-123" }
}
}
deleteAll(request: Request)
Removes all the cookies associated with the given request's origin.
persist()
Persists the current store state in the localStorage
.
hydrate()
Hydrates the store values from the previously persisted state in localStorage
.
clear()
Removes all the cookies from the store, producing a nice and shiny empty store.
Original idea by Christoph Guttandin.
FAQs
Manage request/response cookies in the environments where those are not supported.
We found that @mswjs/cookies demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.